home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 001 / prcmv24c.arc / RBBS.CMD < prev    next >
OS/2 REXX Batch file  |  1986-09-19  |  2KB  |  25 lines

  1. /**********************************************************************/
  2. /*                                                                    */
  3. /* Sample command file for automatic logon to RBBS systems            */
  4. /*                                                                    */
  5. /**********************************************************************/
  6.  
  7. EMULATE ANSI                /* Use ANSI-BBS emulation for ANSI graphics      */
  8. DIAL "15"                   /* Call dialing directory entry number 15        */
  9. TRANSMIT "!"                /* Transmit several Carriage returns waiting     */
  10. PAUSE "1"                   /* 1 second in between...                        */
  11. TRANSMIT "!"                /*                                               */
  12. PAUSE "1"                   /*                                               */
  13. TRANSMIT "!"                /*                                               */
  14. PAUSE "1"                   /*                                               */
  15. TRANSMIT "!"                /*                                               */
  16. PAUSE "1"                   /*                                               */
  17. TRANSMIT "!"                /*                                               */
  18. WAITFOR "YOUR FIRST NAME?"  /* Wait for first name prompt...                 */
  19. TRANSMIT "ALBERT!"          /* Send name.                                    */
  20. WAITFOR "YOUR LAST NAME?"   /* Wait for last name prompt...                  */
  21. TRANSMIT "EINSTEIN!"        /* Send name.                                    */
  22. WAITFOR "(dots echo)?"      /* Wait for RBBS password prompt...              */
  23. TRANSMIT "EMC2!"            /* Send password                                 */
  24. ALARM                       /* Sound alarm to let you know logon is complete */
  25.